home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ IE Options 6.xpl < prev    next >
Text File  |  2003-11-20  |  1KB  |  56 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Internet\Internet Explorer\Files&Folders"
  5. "NAME"="IE Download Restriction"
  6. "LANGUAGE"="VBScript"
  7. "VERSION"="1.22"
  8. "WARNING"="1"
  9. "TEXT 1"="Allow changes to download folder path"
  10. "DESCRIPTION 1"="When you download a file from the Internet, where no automatially started app is configured, IE usually asks where you want to put the file."
  11. "DESCRIPTION 2"="Turning this option OFF will result in any file, where no automatically started app is configured, to fail! "
  12. "AUTHOR"="Xteq Systems"
  13. "CONTACTURL"="http://www.xteq.com"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"=" "
  16.  
  17. 'All DW
  18. sV1="HKCU\Software\Policies\Microsoft\Internet Explorer\Restrictions\NoSelectDownloadDir"
  19.  
  20. SUB Plugin_Initialize  
  21.  Call Rd(1,sV1)
  22. END SUB
  23.  
  24. SUB Plugin_Apply(ElementIndex,ElementSubIndex)
  25.  Call Wrt(1,sV1)
  26. END SUB
  27.  
  28. Sub Wrt(ITM,VAL)
  29.  b=GetUIElement(ITM)
  30.  if b=false then
  31.     Call RegWriteValue(VAL,1,2)
  32.     Call Restart()
  33.  else
  34.     s=RegReadValue(VAL)
  35.     if IsEmpty(s)=false then
  36.        Call RegDeleteValue(VAL)
  37.        Call Restart()
  38.     end if
  39.  end if
  40. end sub
  41.  
  42. Sub Rd(ITM,VAL)
  43.  i=RegReadValue(VAL)
  44.  if IsEmpty(i) then
  45.     SetUIElement ITM,true
  46.  else
  47.     if i<>1 then     
  48.        SetUIElement ITM,true
  49.     end if
  50.  end if
  51. end sub
  52.  
  53. SUB Plugin_Terminate
  54. END SUB
  55.  
  56.